net.UnixListener.fd (field)
20 uses
net (current package)
file_unix.go#L98: return &UnixListener{fd: fd, path: laddr.Name, unlink: false}, nil
unixsock.go#L221: fd *netFD
unixsock.go#L227: func (ln *UnixListener) ok() bool { return ln != nil && ln.fd != nil }
unixsock.go#L238: return newRawListener(l.fd)
unixsock.go#L249: return nil, &OpError{Op: "accept", Net: l.fd.net, Source: nil, Addr: l.fd.laddr, Err: err}
unixsock.go#L262: return nil, &OpError{Op: "accept", Net: l.fd.net, Source: nil, Addr: l.fd.laddr, Err: err}
unixsock.go#L274: return &OpError{Op: "close", Net: l.fd.net, Source: nil, Addr: l.fd.laddr, Err: err}
unixsock.go#L282: func (l *UnixListener) Addr() Addr { return l.fd.laddr }
unixsock.go#L290: if err := l.fd.pfd.SetDeadline(t); err != nil {
unixsock.go#L291: return &OpError{Op: "set", Net: l.fd.net, Source: nil, Addr: l.fd.laddr, Err: err}
unixsock.go#L309: err = &OpError{Op: "file", Net: l.fd.net, Source: nil, Addr: l.fd.laddr, Err: err}
unixsock_posix.go#L172: fd, err := ln.fd.accept()
unixsock_posix.go#L196: return ln.fd.Close()
unixsock_posix.go#L200: f, err := ln.fd.dup()
unixsock_posix.go#L230: return &UnixListener{fd: fd, path: fd.laddr.String(), unlink: true}, nil
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |